home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1997 February / EnigmA AMIGA RUN 15 (1997)(G.R. Edizioni)(IT)[!][issue 1997-02][PLANET CD V].iso / enigma / earcd / emula / arosdv19.lha / AROS / dos / errorlist.c < prev    next >
C/C++ Source or Header  |  1996-10-24  |  3KB  |  67 lines

  1. /*
  2.     (C) 1995-96 AROS - The Amiga Replacement OS
  3.     $Id: errorlist.c,v 1.2 1996/08/01 17:40:50 digulla Exp $
  4.     $Log: errorlist.c,v $
  5.     Revision 1.2  1996/08/01 17:40:50  digulla
  6.     Added standard header for all files
  7.  
  8.     Desc:
  9.     Lang:
  10. */
  11. #include <dos/dos.h>
  12. #include <dos/dosasl.h>
  13. #include "dos_intern.h"
  14.  
  15. struct EString EString[]=
  16. {
  17. { ERROR_NO_FREE_STORE,        "No free store" },
  18. { ERROR_TASK_TABLE_FULL,    "Task table full" },
  19. { ERROR_BAD_TEMPLATE,        "Bad template" },
  20. { ERROR_BAD_NUMBER,        "Bad number" },
  21. { ERROR_REQUIRED_ARG_MISSING,    "Required argument missing" },
  22. { ERROR_KEY_NEEDS_ARG,        "Keyword needs argument" },
  23. { ERROR_TOO_MANY_ARGS,        "Too many arguments" },
  24. { ERROR_UNMATCHED_QUOTES,    "Unmatched quoted" },
  25. { ERROR_LINE_TOO_LONG,        "Line too long" },
  26. { ERROR_FILE_NOT_OBJECT,    "File not object" },
  27. { ERROR_INVALID_RESIDENT_LIBRARY,"Invalid resident library" },
  28. { ERROR_NO_DEFAULT_DIR,     "No default dir" },
  29. { ERROR_OBJECT_IN_USE,        "Object is in use" },
  30. { ERROR_OBJECT_EXISTS,        "Object exists already" },
  31. { ERROR_DIR_NOT_FOUND,        "Directory not found" },
  32. { ERROR_OBJECT_NOT_FOUND,    "Object not found" },
  33. { ERROR_BAD_STREAM_NAME,    "Bad stream name" },
  34. { ERROR_OBJECT_TOO_LARGE,    "Object too large" },
  35. { ERROR_ACTION_NOT_KNOWN,    "Action not known" },
  36. { ERROR_INVALID_COMPONENT_NAME, "Invalid component name" },
  37. { ERROR_INVALID_LOCK,        "Invalid lock" },
  38. { ERROR_OBJECT_WRONG_TYPE,    "Object is of wrong type" },
  39. { ERROR_DISK_NOT_VALIDATED,    "Disk is not validated" },
  40. { ERROR_DISK_WRITE_PROTECTED,    "Disk is write protected" },
  41. { ERROR_RENAME_ACROSS_DEVICES,    "Rename across devices attempted" },
  42. { ERROR_DIRECTORY_NOT_EMPTY,    "Directory isn't empty" },
  43. { ERROR_TOO_MANY_LEVELS,    "Too many levels" },
  44. { ERROR_DEVICE_NOT_MOUNTED,    "Device not mounted" },
  45. { ERROR_SEEK_ERROR,        "Seek error" },
  46. { ERROR_COMMENT_TOO_BIG,    "Comment too big" },
  47. { ERROR_DISK_FULL,        "Disk is full" },
  48. { ERROR_DELETE_PROTECTED,    "Object is delete protected" },
  49. { ERROR_WRITE_PROTECTED,    "Object is write protected" },
  50. { ERROR_READ_PROTECTED,     "Object is read protected" },
  51. { ERROR_NOT_A_DOS_DISK,     "Not a DOS disk" },
  52. { ERROR_NO_DISK,        "No disk in drive" },
  53. { ERROR_NO_MORE_ENTRIES,    "No more entries in directory" },
  54. { ERROR_IS_SOFT_LINK,        "Object is soft link" },
  55. { ERROR_OBJECT_LINKED,        "Object is linked" },
  56. { ERROR_BAD_HUNK,        "Bad hunk in loadfile" },
  57. { ERROR_NOT_IMPLEMENTED,    "Action not implemented" },
  58. { ERROR_RECORD_NOT_LOCKED,    "Record not locked" },
  59. { ERROR_LOCK_COLLISION,     "Lock collision" },
  60. { ERROR_LOCK_TIMEOUT,        "Lock timed out" },
  61. { ERROR_UNLOCK_ERROR,        "Unlock error" },
  62. { ERROR_BUFFER_OVERFLOW,    "Buffer overflow" },
  63. { ERROR_BREAK,            "Break" },
  64. { ERROR_NOT_EXECUTABLE,     "File is not executable" },
  65. { 0,                "Undefined error" }
  66. };
  67.